home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr44 / modex32w.zip / MASKS.ASM < prev    next >
Assembly Source File  |  1995-02-21  |  448b  |  23 lines

  1.         .386p
  2.         locals
  3.         include w.inc
  4.  
  5. ; Mode X (320x240, 256 colors) masking values for
  6. ; functions that need them.
  7. ;
  8. ; (ykumanan)
  9. ;
  10.         @dseg
  11.  
  12.         public  LeftClipPlaneMask
  13.         public  RightClipPlaneMask
  14.  
  15. ; Plane masks for clipping left and right edges of rectangle.
  16. LeftClipPlaneMask       db      00fh,00eh,00ch,008h
  17. RightClipPlaneMask      db      00fh,001h,003h,007h
  18.  
  19.         ends
  20.  
  21.         end
  22.  
  23.